/* 1. Button and Information Boxex on the "The Costs" Page*/
button {
    background-color: #d89e8c; /* Dark professional blue */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e4b283;
}

/* 2. Style the Dialog Box itself */
dialog {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

/* 3. Style the "Backdrop" (the area behind the dialog) */
dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

/* 4. Formatting content inside the dialog */
dialog h3 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

dialog p {
    line-height: 1.6;
    color: #444;
}

/* 5. Align the Close button to the right */
dialog form {
    text-align: right;
    margin-top: 20px;
}